home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Updaters / WhiteCap 3.0.4 / WhiteCap Source.sit / WhiteCap Source / Common / math / Headers / Camera.h next >
Text File  |  1999-07-23  |  374b  |  26 lines

  1.  
  2.  
  3. #pragma once
  4.  
  5. #include "V3.h"
  6.  
  7.  
  8. class Camera {
  9.  
  10.  
  11.     public:
  12.         V3                mDir;            // The direction we're looking
  13.         V3                mUpDir;            // What direction is up
  14.         V3                mPos;            // Where we are in space
  15.         float            mXYScale;        // Scales all the XY cords in he cam cord system
  16.         float            mPersZ;            // The dist added to the cam's z 
  17.  
  18.  
  19.         void            CalcTransMatrix( R3Matrix& outT ) const;
  20. };
  21.  
  22.  
  23.  
  24.  
  25.  
  26.